home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Microsoft Visual Basic .NET
/
Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin
/
setup
/
vbnet
/
01 getting started with net
/
csharpdemo
/
test.cs
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-09-07
|
328 b
|
20 lines
namespace CSharpDemo
{
public class Test
{
static public void Main(string[] args)
{
double x;
double res;
x = 12.5;
res = Add(x, 46.5);
System.Console.Write("The result is ");
System.Console.WriteLine(res);
}
static double Add(double n1, double n2)
{
return n1 + n2;
}
}
}